:root {
  --primary: #3b444ee5
}

.color-0 {
  color: #ffffff;
}
.color-1 {
  color: #ff4444;
}
.color-2 {
  color: #99cc00;
}
.color-3 {
  color: #ffbb33;
}
.color-4 {
  color: #0099cc;
}
.color-5 {
  color: #33b5e5;
}
.color-6 {
  color: #aa66cc;
}
.color-8 {
  color: #cc0000;
}
.color-9 {
  color: #cc0068;
}

* {
  font-family: 'DM Sans', sans-serif;
  margin: 0;
  padding: 0;
}

.no-grow {
  flex-grow: 0;
}

em {
  font-style: normal;
}


@import url('https://fonts.googleapis.com/css2?family=DM+Sans&display=swap');
#app {
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: white;
}

.chat-window {
  position: absolute;
  top: 20%;
  left: 0.9%;
  width: 25%;
  height: 22%;
  max-width: 1000px;
  background-color: rgba(26, 32, 48, 0.635);
  -webkit-animation-duration: 2s;
}

.chat-messages {
  position: relative;
  height: 95%;
  font-size: 1.2vh;
  margin: 1%;

  overflow-x: hidden;
  overflow-y: hidden;
}

.chat-input {
  font-size: 0.8vh;
  position: absolute;

  top: 42%;
  left: 0.8%;
  width: 32%;
  max-width: 1000px;
  box-sizing: border-box;
}

textarea {
  font-size: 1.2vh;
  box-sizing: border-box;
  padding: 2%;
  color: white;

  display: flex;
  align-items: center;
  resize: none;

  background: rgba(26, 32, 48, 0.635);
  box-shadow: 0 10px 20px rgba(64, 64, 64, 0.15);
  width: 70%;
  border-width: 0;
  height: 3.15%;
  overflow: hidden;
  text-overflow: ellipsis;

  border-radius: 0.3em;
}

textarea:focus,
input:focus {
  outline: none;
}

.msg {
  margin-bottom: 0.28%;
}

.multiline {
  margin-left: 4%;
  text-indent: -1.2rem;
  white-space: pre-line;
}

.suggestions {
  list-style-type: none;
  padding: 1%;
  font-size: 1.2vh;
  border-radius: 0.3em;

  margin-top: 0.2em;

  box-sizing: border-box;
  color: white;
  background: rgba(26, 32, 48, 0.635);
  box-shadow: 0 10px 20px rgba(64, 64, 64, 0.15);
  width: 70%;
}

.help {
  color: #b0bbbd;
}

.disabled {
  color: #b0bbbd;
}

.suggestion {
  margin: 1%;
}

.hidden {
  display: none;
}
